kotlin access layout component outside of Mainactivity
128
doSomethingFunctionOrClass(activity: AppCompatActivity)
{
var button = activity.findViewById<Button>(R.id.button)
// if I try do something with button the app crashes eg
button.text = "Text"
}